home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
mm
/
table.c.D
< prev
next >
Wrap
Text File
|
1990-07-25
|
2KB
|
88 lines
*** /tmp/,RCSt1022408 Wed Jul 25 13:59:48 1990
--- table.c Mon Jul 23 11:44:23 1990
***************
*** 4,14 ****
! #include "../h/const.h"
! #include "../h/type.h"
! #include "const.h"
! #undef EXTERN
! #define EXTERN
!
! #include "../h/callnr.h"
! #include "glo.h"
#include "mproc.h"
--- 4,9 ----
! #define _TABLE
! #include "mm.h"
! #include <minix/callnr.h>
#include "mproc.h"
***************
*** 17,26 ****
/* Miscellaneous */
! char core_name[] = {"core"}; /* file name where core images are produced */
! /*
! * Creating core files is disabled, except for SIGQUIT and SIGIOT.
! * Set core_bits to 0x0EFC if you want compatibility with UNIX V7.
! */
! unshort core_bits = 0x0024; /* which signals cause core images */
- extern char mm_stack[];
char *stackpt = &mm_stack[MM_STACK_BYTES]; /* initial stack pointer */
--- 12,16 ----
/* Miscellaneous */
! char core_name[] = "core"; /* file name where core images are produced */
! unshort core_bits = 0x0EFC; /* which signals cause core images */
char *stackpt = &mm_stack[MM_STACK_BYTES]; /* initial stack pointer */
***************
*** 27,32 ****
- extern do_mm_exit(), do_fork(), do_wait(), do_brk(), do_getset(), do_exec();
- extern do_signal(), do_kill(), do_pause(), do_alarm();
- extern no_sys(), unpause(), do_ksig(), do_brk2();
-
int (*call_vec[NCALLS])() = {
--- 17,18 ----
***************
*** 58,60 ****
no_sys, /* 25 = stime */
! no_sys, /* 26 = (ptrace)*/
do_alarm, /* 27 = alarm */
--- 44,46 ----
no_sys, /* 25 = stime */
! do_trace, /* 26 = ptrace */
do_alarm, /* 27 = alarm */
***************
*** 70,74 ****
do_kill, /* 37 = kill */
! no_sys, /* 38 = unused */
! no_sys, /* 39 = unused */
! no_sys, /* 40 = unused */
no_sys, /* 41 = dup */
--- 56,60 ----
do_kill, /* 37 = kill */
! no_sys, /* 38 = rename */
! no_sys, /* 39 = mkdir */
! no_sys, /* 40 = rmdir */
no_sys, /* 41 = dup */
***************
*** 101,103 ****
no_sys, /* 67 = REVIVE */
! no_sys /* 68 = TASK_REPLY */
};
--- 87,96 ----
no_sys, /* 67 = REVIVE */
! no_sys, /* 68 = TASK_REPLY */
! #if (CHIP == INTEL)
! #if AM_KERNEL
! do_amoeba, /* 69 = AMOEBA SYSTEM CALL */
! #else
! no_sys, /* 69 = AMOEBA SYSTEM CALL */
! #endif
! #endif
};